mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 13:58:47 +00:00
19 lines
454 B
C#
19 lines
454 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO;
|
|
|
|
namespace FrodeTest.Test
|
|
{
|
|
public class DirectoryInfoTest
|
|
{
|
|
public static void RunTest()
|
|
{
|
|
Console.WriteLine("-- TESTING System.IO.DirectoryInfo --");
|
|
|
|
//DirectoryInfo dir = new DirectoryInfo("/1/");
|
|
//Console.WriteLine("FullName: " + dir.FullName);
|
|
}
|
|
}
|
|
}
|