Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルをアップロードした後、アップロード ボタンをクリックすると、既にファイルが存在する場合はメッセージが表示されます。上書きしますか? ここでは、ポップアップとキャンセル コントロール ID を使用しましたが、OK ボタンを使用してから、OK ボタンを押してファイルをロードし、古いものを上書きします c# を使用して asp.net でコードを記述する方法
チェック存在ファイルの場合、このコードを使用できます
var folderfile4 = Server.MapPath("~/files/Path"); string saveflFile4 = folderfile4 + "\\" + System.IO.Path.GetFileName(flFile4); if(!File.Exists(saveflFile4)) txtFile4.SaveAs(saveflFile4); else txtError.Text = "File exists";