Valid File Path

vino via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Thu Aug 31 14:59:22 PDT 2017


Hi All,

   Can you help me what is wrong in the below program, as the 
output is empty.

import std.stdio, std.path;

void main ()
{
version (Windows)
{
auto Path = `C:\#Users\Admin\Desktop\Script\Test1`;
if(!Path.isValidPath) { writeln("Path Not Valid");}
}
}

From,
Vino.B


More information about the Digitalmars-d-learn mailing list