Click here to Skip to main content
15,920,030 members

Comments by Member 14912665 (Top 2 by date)

Member 14912665 3-Jan-23 4:12am View    
Deleted
Merhaba, aslında aşağıdaki kod çalışıyor ama ben txt'in önlenmesini istemiyorum, tüm dosyaları içermesini istiyorum, yardımcı olur musunuz?

ad alanı FileTransferCSharp
{
class Program
{
static void Main(string[] args)
{
string originPath = "C:\\1";
string destPath = "C:\\2";
string fileType = "*.txt";

// Tüm metin dosyalarını al
string[] txtFilesArray = Directory.GetFiles(originPath, fileType);

// Dosyalar arasında döngü
foreach (txtFilesArray içindeki dize dosyası)
{
// Dosya 24 saatten daha kısa bir süre önce değiştirilmişse kopyalayın
if (FileCheck(file))
{
string fileName = Path.GetFileName(file);

File.Copy(dosya, destPath + dosyaAdı, doğru);
}
}
}
public static bool FileCheck(string FileName)
{
//
FileInfo fileNameInfo = new FileInfo(FileName); // (fileNameInfo.LastWriteTime.AddDays(1) >= DateTime.Now) true döndürürse

son değiştirme tarihini kontrol edin ; aksi takdirde yanlış döndürür; } } }
Member 14912665 3-Jan-23 4:06am View    
Deleted
Merhaba, aslında aşağıdaki kod çalışıyor ama ben txt dosyası olmasını istemiyorum, tüm dosyaları içermesini istiyorum, yardımcı olur musunuz?

namespace FileTransferCSharp
{
class Program
{
static void Main(string[] args)
{
string originPath = "C:\\1";
string destPath = "C:\\2";
string fileType = "*.txt";

// Get all text files
string[] txtFilesArray = Directory.GetFiles(originPath, fileType);

// Loop through files
foreach (string file in txtFilesArray)
{
// If the file was modified less than 24 hours ago, then copy it
if (FileCheck(file))
{
string fileName = Path.GetFileName(file);

File.Copy(file, destPath + fileName, true);
}
}
}
public static bool FileCheck(string FileName)
{
// Get the attributes of the file
FileInfo fileNameInfo = new FileInfo(FileName);

// Check the last modify date
if (fileNameInfo.LastWriteTime.AddDays(1) >= DateTime.Now)
return true;
else
return false;
}
}
}