view tango/example/conduits/filepathname.d @ 373:d1574e142e93 trunk

[svn r394] Fixed the new DtoNullValue function
author lindquist
date Tue, 15 Jul 2008 15:16:56 +0200
parents 1700239cab2e
children
line wrap: on
line source

import tango.io.Console;

import tango.io.FilePath;

void main(){
    Cout ((new FilePath(r"d:\path\foo.bat")).name).newline;
    Cout ((new FilePath(r"d:\path.two\bar")).name).newline;
    Cout ((new FilePath("/home/user.name/bar.")).name).newline;
    Cout ((new FilePath(r"d:\path.two\bar")).name).newline;
    Cout ((new FilePath("/home/user/.resource")).name).newline;
}