/*#if !JAVA using System; using System.Collections.Generic; namespace bocoree { public class File { public readonly string separator = System.IO.Path.DirectorySeparatorChar + ""; public readonly char separatorChar = System.IO.Path.DirectorySeparatorChar; private string m_path; /// /// 指定されたパス名文字列を抽象パス名に変換して、新しい File のインスタンスを生成します。 /// /// public File( String pathname ) { m_path = pathname; } /// /// この抽象パス名が示すファイルをアプリケーションが実行できるかどうかを判定します。 /// public bool canExecute() { throw new NotImplementedException(); } /// /// この抽象パス名が示すファイルをアプリケーションが読み込めるかどうかを判定します。 /// public bool canRead() { System.IO.FileStream fs = null; bool ret = false; try { fs = System.IO.File.OpenRead( m_path ); ret = true; } catch { ret = false; } finally { if ( fs != null ) { try { fs.Close(); } catch { } } } return ret; } /// /// この抽象パス名が示すファイルをアプリケーションが変更できるかどうかを判定します。 /// public bool canWrite() { System.IO.FileStream fs = null; bool ret = false; try { fs = System.IO.File.OpenWrite( m_path ); ret = true; } catch { ret = false; } finally { if ( fs != null ) { try { fs.Close(); } catch { } } } return ret; } /// /// 2 つの抽象パス名を語彙的に比較します。 /// public int compareTo( File pathname ) { return System.IO.Path.GetFullPath( this.m_path ).CompareTo( System.IO.Path.GetFullPath( pathname.m_path ) ); } /// /// この抽象パス名が示す空の新しいファイルを不可分 (atomic) に生成します (その名前のファイルがまだ存在しない場合だけ)。 /// public bool createNewFile() { if ( System.IO.File.Exists( m_path ) ) { return false; } else { System.IO.File.Create( m_path ); return true; } } /// /// 指定された接頭辞と接尾辞をファイル名の生成に使用して、デフォルトの一時ファイルディレクトリに空のファイルを生成します。 /// public static File createTempFile( string prefix, string suffix ) { string tmp = System.IO.Path.GetTempFileName(); string dir = System.IO.Path.GetDirectoryName( tmp ); string file = System.IO.Path.GetFileName( tmp ); return new File( System.IO.Path.Combine( dir, prefix + file + suffix ) ); } /// /// 指定されたディレクトリで新しい空のファイルを生成し、その名前には、指定された接頭辞および接尾辞の文字列が使用されます。 /// public static File createTempFile( string prefix, string suffix, File directory ) { String dir = System.IO.Path.GetTempPath(); if ( directory != null ) { dir = directory.m_path; } if ( !System.IO.Directory.Exists( dir ) ) { throw new System.IO.IOException(); } while ( true ) { String f = prefix + System.IO.Path.GetRandomFileName() + suffix; String full = System.IO.Path.Combine( dir, f ); if ( !System.IO.File.Exists( full ) ) { System.IO.File.Create( full ); return new File( full ); } } throw new System.IO.IOException(); } /// /// この抽象パス名が示すファイルまたはディレクトリを削除します。 /// public bool delete() { try { System.IO.File.Delete( m_path ); return true; } catch { } return false; } /// /// この抽象パス名が示すファイルまたはディレクトリが、仮想マシンが終了したときに削除されるように要求します。 /// public void deleteOnExit() { throw new NotImplementedException(); } /// /// この抽象パス名が指定されたオブジェクトと等しいかどうかを判定します。 /// public bool equals( object obj ) { return base.Equals( obj ); } /// /// この抽象パス名が示すファイルまたはディレクトリが存在するかどうかを判定します。 /// public bool exists() { bool file = System.IO.File.Exists( m_path ); bool dir = System.IO.Directory.Exists( m_path ); return file || dir; } /// /// この抽象パス名の絶対形式を返します。 /// public File getAbsoluteFile() { return new File( getAbsolutePath() ); } /// /// この抽象パス名の絶対パス名文字列を返します。 /// public string getAbsolutePath() { return System.IO.Path.GetFullPath( m_path ); } /// /// この抽象パス名の正規の形式を返します。 /// public File getCanonicalFile() { throw new NotImplementedException(); } /// /// この抽象パス名の正規のパス名文字列を返します。 /// public string getCanonicalPath() { throw new NotImplementedException(); } /// /// この抽象パス名で指定されるパーティション内で未割り当てのバイト数を返します。 /// public long getFreeSpace() { string drive = System.IO.Path.GetPathRoot( m_path ); foreach ( System.IO.DriveInfo di in System.IO.DriveInfo.GetDrives() ) { if ( di.RootDirectory.FullName == drive ) { return di.TotalFreeSpace; } } return 0; } /// /// この抽象パス名が示すファイルまたはディレクトリの名前を返します。 /// public string getName() { return System.IO.Path.GetFileName( m_path ); } /// /// この抽象パス名の親のパス名文字列を返します。 /// public string getParent() { return System.IO.Path.GetDirectoryName( m_path ); } /// /// この抽象パス名の親の抽象パス名を返します。 /// public File getParentFile() { return new File( getParent() ); } /// /// この抽象パス名をパス名文字列に変換します。 /// public string getPath() { return m_path; } /// /// この抽象パス名で指定されるパーティションのサイズを返します。 /// public long getTotalSpace() { return getFreeSpace(); } /// /// この抽象パス名で指定されるパーティション上で、この仮想マシンが利用できるバイト数を返します。 /// public long getUsableSpace() { return getFreeSpace(); } /// /// この抽象パス名のハッシュコードを計算します。 /// public int hashCode() { return m_path.GetHashCode(); } /// /// この抽象パス名が絶対かどうかを判定します。 /// public bool isAbsolute() { return System.IO.Path.IsPathRooted( m_path ); } /// /// この抽象パス名が示すファイルがディレクトリであるかどうかを判定します。 /// public bool isDirectory() { bool dir = System.IO.Directory.Exists( m_path ); if ( dir ) { return true; } else { return false; } } /// /// この抽象パス名が示すファイルが普通のファイルかどうかを判定します。 /// public bool isFile() { throw new NotImplementedException(); } /// /// この抽象パス名が示すファイルが隠しファイルかどうかを判定します。 /// public bool isHidden() { throw new NotImplementedException(); } /// /// この抽象パス名が示すファイルが最後に変更された時刻を返します。 /// public long lastModified() { System.IO.FileInfo f = new System.IO.FileInfo( m_path ); return f.LastWriteTimeUtc.Ticks; } /// /// この抽象パス名に指定されているファイルの長さを返します。 /// public long length() { System.IO.FileInfo f = new System.IO.FileInfo( m_path ); return f.Length; } /// /// この抽象パス名が示すディレクトリにあるファイルおよびディレクトリを示す文字列の配列を返します。 /// public string[] list() { List list = new List(); list.AddRange( System.IO.Directory.GetDirectories( m_path ) ); list.AddRange( System.IO.Directory.GetFiles( m_path ) ); return list.ToArray(); } /// /// この抽象パス名が示すディレクトリにあるファイルおよびディレクトリの中で、指定されたフィルタの基準を満たすものの文字列の配列を返します。 /// public string[] list( FilenameFilter filter ) { List ret = new List(); foreach ( string s in list() ) { if ( filter.accept( this, s ) ) { ret.Add( s ); } } return ret.ToArray(); } /// /// この抽象パス名が示すディレクトリ内のファイルを示す抽象パス名の配列を返します。 /// public File[] listFiles() { string[] files = System.IO.Directory.GetFiles( m_path ); File[] ret = new File[files.Length]; for ( int i = 0; i < files.Length; i++ ) { ret[i] = new File( m_path + separator + files[i] ); } return ret; } /// /// この抽象パス名が示すディレクトリにあるファイルおよびディレクトリの中で、指定されたフィルタの基準を満たすものの抽象パス名の配列を返します。 /// public File[] listFiles( FileFilter filter ) { List ret = new List(); foreach ( string s in list() ) { File f = new File( m_path + separator + s ); if ( filter.accept( f ) ) { ret.Add( f ); } } return ret.ToArray(); } /// /// この抽象パス名が示すディレクトリにあるファイルおよびディレクトリの中で、指定されたフィルタの基準を満たすものの抽象パス名の配列を返します。 /// public File[] listFiles( FilenameFilter filter ) { List ret = new List(); foreach ( string s in list() ) { if ( filter.accept( this, s ) ) { File f = new File( m_path + separator + s ); ret.Add( f ); } } return ret.ToArray(); } /// /// 有効なファイルシステムのルートをリスト表示します。 /// public static File[] listRoots() { throw new NotImplementedException(); } /// /// この抽象パス名が示すディレクトリを生成します。 /// public bool mkdir() { try { System.IO.Directory.CreateDirectory( m_path ); return true; } catch { } return false; } /// /// この抽象パス名が示すディレクトリを生成します。 /// public bool mkdirs() { throw new NotImplementedException(); } /// /// この抽象パス名が示すファイルの名前を変更します。 /// public bool renameTo( File dest ) { try { System.IO.File.Replace( m_path, dest.m_path, m_path + "BAK" ); return true; } catch { } return false; } /// /// この抽象パス名に所有者の実行権を設定する簡易メソッドです。 /// public bool setExecutable( bool executable ) { throw new NotImplementedException(); } /// /// この抽象パス名に所有者または全員の実行権を設定します。 /// public bool setExecutable( bool executable, bool ownerOnly ) { throw new NotImplementedException(); } /// /// この抽象パス名が示すファイルまたはディレクトリが変更された時刻を設定します。 /// public bool setLastModified( long time ) { try { System.IO.FileInfo f = new System.IO.FileInfo( m_path ); f.LastWriteTimeUtc = new DateTime( time ); return true; } catch { } return false; } /// /// この抽象パス名に所有者の読み取り権を設定する簡易メソッドです。 /// public bool setReadable( bool readable ) { throw new NotImplementedException(); } /// /// この抽象パス名に所有者または全員の読み取り権を設定します。 /// public bool setReadable( bool readable, bool ownerOnly ) { throw new NotImplementedException(); } /// /// この抽象パス名が示すファイルまたはディレクトリにマークを設定し、読み込みオペレーションだけが許可されるようにします。 /// public bool setReadOnly() { throw new NotImplementedException(); } /// /// この抽象パス名に所有者の書き込み権を設定する簡易メソッドです。 /// public bool setWritable( bool writable ) { throw new NotImplementedException(); } /// /// この抽象パス名に所有者または全員の書き込み権を設定します。 /// public bool setWritable( bool writable, bool ownerOnly ) { throw new NotImplementedException(); } /// /// この抽象パス名のパス名文字列を返します。 /// public string toString() { return m_path; } } public interface FilenameFilter { bool accept( File dir, String name ); } public interface FileFilter { bool accept( File filepath ); } } #endif*/