App reads all files on specified folder.
Windows 10 x86 or x64 : https://sourceforge.net/projects/playpcmwin/files/others/ReadAllFilesOnSpecifiedFolder102.zip/download
Windows 10 x86 or x64
"Extract All" the downloaded zip and run ReadAllFilesOnSpecifiedFolder.exe on the subfolder.
Delete the zip downloaded and extracted files to uninstall.
MIT License.
https://sourceforge.net/p/playpcmwin/code/HEAD/tree/PlayPcmWin/ReadAllFilesOnSpecifiedFolder/
https://sourceforge.net/p/playpcmwin/code/HEAD/tree/PlayPcmWin/WWUtil/
Q. What read means.
A. App performs following read task for each files. Simply put : Read the file from beginning to end.
ReadAllFilesOnFolder.cs:105 private string ReadOneFile(string path) { var buf = new byte[1024 * 1024]; ... using (var br = new BinaryReader(File.Open(path, FileMode.Open, FileAccess.Read))) { long totalBytes = br.BaseStream.Length; // bufのサイズ単位で読む。 for (long pos = 0; pos < totalBytes; pos += buf.Length) { int readBytes = buf.Length; if (totalBytes < pos + readBytes) { readBytes = (int)(totalBytes - pos); } br.Read(buf, 0, readBytes); } } ... }
Version 1.0.2
* Supports Stop (cancel) on directory traversal.
Version 1.0.1
* Fix potential deadlock.
Version 1.0.0
* Initial release.