import std.stream;
import std.stdio;
void main () {
File file = new File ;
File OutFile = new File;
try {
file.open("1.srt",FileMode.In);
OutFile.open("out.srt", FileMode.Out);
while(!file.eof()) {
char[] str=file.readLine();
OutFile.writeLine(str);
//printf("%.*s\n",file.readLine());
}
} catch (Exception x) {
writefln("Datei kann nicht geoeffnet werden ");
throw x;
}
OutFile.close();
file.close();
}
在网上看到的一段代码,分享了。











