view tango/example/conduits/fileops.d @ 228:52d1e9d27dc6 trunk

[svn r244] added another asm test.
author lindquist
date Sat, 07 Jun 2008 19:20:15 +0200
parents 1700239cab2e
children
line wrap: on
line source

/*****************************************************

  Example that shows some simple file operations

  Put into public domain by Lars Ivar Igesund

*****************************************************/

import tango.io.Stdout;

import tango.io.FilePath;

void main (char[][] args)
{
    auto src = args[0] ~ ".d";
    auto dst = new FilePath (args[0] ~ ".d.copy");

    Stdout.formatln ("copy file {} to {}", src, dst);
    dst.copy (src);
    assert (dst.exists);

    Stdout.formatln ("removing file {}",  dst);
    dst.remove;

    assert (dst.exists is false);
}