Top "File" questions

A block of arbitrary information, or resource for storing information, accessible by the string-based name or path.

Java : How to determine the correct charset encoding of a stream

With reference to the following thread: Java App : Unable to read iso-8859-1 encoded file correctly What is the best …

java file encoding stream character-encoding
Recursively list files in Java

How do I recursively list all files under a directory in Java? Does the framework provide any utility? I saw …

java file recursion java-7 nio
How do I watch a file for changes?

I have a log file being written by another process which I want to watch for changes. Each time a …

python file pywin32 watch
Compare two files in Visual Studio

I saw new comparsion tool in VS 2012 for comparing two files or two versions of file. I like it. But …

visual-studio file compare comparison diff
How to get the filename without the extension in Java?

Can anyone tell me how to get the filename without the extension? Example: fileNameWithExt = "test.xml"; fileNameWithOutExt = "test";

java file
PHP, get file name without file extension

I have this PHP code: function ShowFileExtension($filepath) { preg_match('/[^?]*/', $filepath, $matches); $string = $matches[0]; $pattern = preg_split('/\./…

php file string
How to save a dictionary to a file?

I have problem with changing a dict value and saving the dict to a text file (the format must be …

python file dictionary python-3.x
Open existing file, append a single line

I want to open a text file, append a single line to it, then close it.

c# file
Basic http file downloading and saving to disk in python?

I'm new to Python and I've been going through the Q&A on this site, for an answer to …

python file download save
How to create a file in Android?

How to create a file, write data into it and read data from it on Android? If possible provide a …

android file