C#判断目录是否存在,不存在就创建
时间:2010-10-08 来源:quietwalk
strdFilePath = @"\存储卡\gprstest_all\DataExchange\Received\";
if (!Directory.Exists(strdFilePath))
{
Directory.CreateDirectory(strdFilePath);
相关阅读 更多 +
时间:2010-10-08 来源:quietwalk
strdFilePath = @"\存储卡\gprstest_all\DataExchange\Received\";
if (!Directory.Exists(strdFilePath))
{
Directory.CreateDirectory(strdFilePath);