Top "Filesystems" questions

A file system is a way of organizing data on a computer system.

Monitoring contents of files/directories?

I'm looking for a cross-platform file monitoring python package? I know it is possible to monitor files on windows using …

python file cross-platform filesystems monitoring
Getting absolute path of a file

How can I convert a relative path to an absolute path in C on Unix? Is there a convenient system …

c unix path filesystems absolute
Java in Eclipse: Where do I put files on the filesystem that I want to load using getResource? (e.g. images for an ImageIcon)

I know the file needs to be where the getClass().getResource(filename) can find it, but I don't know where …

java eclipse filesystems imageicon
Create an empty file in Node.js?

For now I use fs.openSync(filepath, 'a') But it's a little tricky. Is there a 'standard' way to create …

node.js filesystems
Convert a directory structure in the filesystem to JSON with Node.js

I have a file structure like this: root |_ fruits |___ apple |______images |________ apple001.jpg |________ apple002.jpg |_ animals |___ cat |______images |________ cat001.jpg |________ …

javascript node.js d3.js filesystems
Python "FileExists" error when making directory

I have several threads running in parallel from Python on a cluster system. Each python thread outputs to a directory …

python file-io filesystems queue cluster-computing
What is the best way to get the executing exe's path in .NET?

From program a.exe located in c:/dir I need to open text file c:/dir/text.txt. I don't …

c# .net filesystems
What are `Zone.Identifier` files?

I often see files named 'blabla.exe:Zone.Identifier' when monitoring I/O with Process Monitor. The files are seen …

windows file-io filesystems smb network-drive
VBA How to get path to The Current Users Application data folder?

In general, Using VBA, how do I determine where the Current users Application Data folder is? The FileSystemObjects special folders …

vba windows ms-word filesystems
One-liner to recursively list directories in Ruby?

What is the fastest, most optimized, one-liner way to get an array of the directories (excluding files) in Ruby? How …

ruby filesystems recursion