[Issue 4188] New: std.file.remove throws Exception on success
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri May 14 16:46:03 PDT 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4188
Summary: std.file.remove throws Exception on success
Product: D
Version: 2.041
Platform: Other
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: nobody at puremagic.com
ReportedBy: Jesse.K.Phillips+D at gmail.com
CC: Jesse.K.Phillips+D at gmail.com
--- Comment #0 from Jesse Phillips <Jesse.K.Phillips+D at gmail.com> 2010-05-14 16:46:02 PDT ---
Using remove on a file that does not exist will result in a exception that is
not clear what the issue is, example below:
import std.file;
void main() {
remove("IDontExist.txt");
}
std.file.FileException: In std\file.d(400), data file IDontExist.txt: The
operation completed successfully.
The FileException states the "operation completed successfully" this is not
actually the case since there was nothing to remove.
Even though it had nothing to remove I think it is reasonable to consider the
operation successful at which point it shouldn't be throwing an Exception.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list