Search Results

1
vote

WAFL: Write Anywhere File Layout

The NetApp website has an extensive library of papers about WAFL and their file servers. If you're interested in technical aspe …
0
votes

When running ls -l, why does the filesize on a directory not match the output of du?

4096, in your example, is the number of bytes used by the directory itself. In other words, this is the space required to store the list of items contained in the directory. It is not …
5
votes

What is a good way to find the latest created file in a folder in c#?

Sorting the files is taking you O(nlogn) time. If all you need is the most recently created, it would be faster to just scan through the files and find the most recent---O(n). …