您好,请您告诉我如何找到文件大小,下面是我用来创建文件的代码。将数据写入文件。
String^ path = "C:\\Users\\Mani\\Desktop\\"+textBox2->Text+".txt";
StreamWriter^ sw ;
if ( !File::Exists( path ) )
{
File_flag = 1;
// Create the file.
sw = File::CreateText( path );
sw->WriteLine("***Log File***");
sw->WriteLine(DateTime::Now);
sw->WriteLine("**************");
}