Top "Filesystems" questions

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

Can you call Directory.GetFiles() with multiple filters?

I am trying to use the Directory.GetFiles() method to retrieve a list of files of multiple types, such as …

c# filesystems .net
How to create a directory using Ansible

How do you create a directory www at /srv on a Debian-based system using an Ansible playbook?

directory filesystems ansible
Get a filtered list of files in a directory

I am trying to get a list of files in a directory using Python, but I do not want a …

python filesystems wildcard glob directory-listing
Open directory dialog

I want the user to select a directory where a file that I will then generate will be saved. I …

wpf filesystems dialog
How many files can I put in a directory?

Does it matter how many files I keep in a single directory? If so, how many files in a directory …

filesystems limit
Why can't I do <img src="C:/localfile.jpg">?

It works if the html file is local (on my C drive), but not if the html file is on …

javascript html filesystems src
How to get a path to the desktop for current user in C#?

How do I get a path to the desktop for current user in C#? The only thing I could find …

c# windows filesystems directory
How to copy a file from one directory to another using PHP?

Say I've got a file test.php in foo directory as well as bar. How can I replace bar/test.…

php file file-io copy filesystems
Remove directory which is not empty

In my Node application I need to remove a directory which has some files, but fs.rmdir only works on …

node.js filesystems
Delete directories recursively in Java

Is there a way to delete entire directories recursively in Java? In the normal case it is possible to delete …

java file-io filesystems delete-directory