Directory.SetLastWriteTime(String, DateTime) Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menyetel tanggal dan waktu direktori terakhir ditulis.
public:
static void SetLastWriteTime(System::String ^ path, DateTime lastWriteTime);
public static void SetLastWriteTime (string path, DateTime lastWriteTime);
static member SetLastWriteTime : string * DateTime -> unit
Public Shared Sub SetLastWriteTime (path As String, lastWriteTime As DateTime)
Parameter
- path
- String
Jalur direktori.
- lastWriteTime
- DateTime
Tanggal dan waktu direktori terakhir ditulis. Nilai ini dinyatakan dalam waktu setempat.
Pengecualian
path
tidak ditemukan (misalnya, direktori tidak ada atau berada di drive yang tidak dipetakan).
path
tidak ditemukan (misalnya, direktori tidak ada atau berada di drive yang tidak dipetakan).
versi .NET Framework dan .NET Core yang lebih lama dari 2.1: path
adalah string panjang nol, hanya berisi spasi kosong, atau berisi satu atau beberapa karakter yang tidak valid. Anda dapat mengkueri karakter yang GetInvalidPathChars() tidak valid dengan metode .
path
adalah null
.
Jalur yang ditentukan, nama file, atau keduanya melebihi panjang maksimum yang ditentukan sistem.
Pemanggil tidak memiliki izin yang diperlukan.
Sistem operasi saat ini bukan Windows NT atau yang lebih baru.
lastWriteTime
menentukan nilai di luar rentang tanggal atau waktu yang diizinkan untuk operasi ini.
Contoh
Contoh berikut menunjukkan cara menggunakan SetLastWriteTime
.
using namespace System;
using namespace System::IO;
void main()
{
try
{
String^ path = "c:\\MyDir";
if ( !Directory::Exists( path ) )
{
Directory::CreateDirectory( path );
}
else
{
// Take an action that will affect the write time.
Directory::SetLastWriteTime( path, DateTime(1985,4,3) );
}
// Get the last write time of a well-known directory.
DateTime dt = Directory::GetLastWriteTime( path );
Console::WriteLine( "The last write time for this directory was {0}", dt );
//Update the last write time.
Directory::SetLastWriteTime( path, DateTime::Now );
dt = Directory::GetLastWriteTime( path );
Console::WriteLine( "The last write time for this directory was {0}", dt );
}
catch ( Exception^ e )
{
Console::WriteLine( "The process failed: {0}", e );
}
}
using System;
using System.IO;
class Test
{
public static void Main()
{
try
{
string path = @"c:\MyDir";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
else
{
// Take an action that will affect the write time.
Directory.SetLastWriteTime(path, new DateTime(1985,4,3));
}
// Get the last write time of a well-known directory.
DateTime dt = Directory.GetLastWriteTime(path);
Console.WriteLine("The last write time for this directory was {0}", dt);
//Update the last write time.
Directory.SetLastWriteTime(path, DateTime.Now);
dt = Directory.GetLastWriteTime(path);
Console.WriteLine("The last write time for this directory was {0}", dt);
}
catch (Exception e)
{
Console.WriteLine("The process failed: {0}", e.ToString());
}
}
}
open System
open System.IO
try
let path = @"c:\MyDir"
if not (Directory.Exists path) then
Directory.CreateDirectory path |> ignore
else
// Take an action that will affect the write time.
Directory.SetLastWriteTime(path, DateTime(1985, 4, 3))
// Get the last write time of a well-known directory.
let dt = Directory.GetLastWriteTime path
printfn $"The last write time for this directory was {dt}"
//Update the last write time.
Directory.SetLastWriteTime(path, DateTime.Now)
let dt = Directory.GetLastWriteTime path
printfn $"The last write time for this directory was {dt}"
with e ->
printfn $"The process failed: {e}"
Imports System.IO
Public Class Test
Public Shared Sub Main()
Try
Dim path As String = "c:\MyDir"
If Directory.Exists(path) = False Then
Directory.CreateDirectory(path)
Else
' Take an action that will affect the write time.
Directory.SetLastWriteTime(path, New DateTime(1985, 4, 3))
End If
'Get the last write time of a well-known directory.
Dim dt As DateTime = Directory.GetLastWriteTime(path)
Console.WriteLine("The last write time for this directory was {0}", dt)
'Update the last write time.
Directory.SetLastWriteTime(path, DateTime.Now)
dt = Directory.GetLastWriteTime(path)
Console.WriteLine("The last write time for this directory was {0}", dt)
Catch e As Exception
Console.WriteLine("The process failed: {0}", e.ToString())
End Try
End Sub
End Class
Keterangan
Parameter path
diizinkan untuk menentukan informasi jalur relatif atau absolut. Informasi jalur relatif ditafsirkan relatif terhadap direktori kerja saat ini. Untuk mendapatkan direktori kerja saat ini, lihat GetCurrentDirectory.
Sensitivitas path
huruf besar/kecil parameter sesuai dengan sistem file tempat kode berjalan. Misalnya, ini tidak peka huruf besar/kecil pada NTFS (sistem file Windows default) dan peka huruf besar/kecil pada sistem file Linux.
Untuk daftar tugas I/O umum, lihat Tugas I/O Umum.