文件管理 · 2022年7月30日

vbnet创建文件夹|aspnet创建文件夹

1. vb.net创建一个txt文本,在debug文件夹里

设计一个窗口,添加一个名为textBox1的System.Windows.Forms.TextBox,添加一个名为button1的System.Windows.Forms.Button。为button1的单击事件添加如下处理函数:Sub Button1Click(sender As Object, e As EventArgs) 'f是你的文本文件的文件名 Const f As String="t.txt" Dim sw As System.IO.StreamWriter=Nothing Try If Not System.IO.File.Exists(f) Then sw=System.IO.File.CreateText(f) Else sw=New System.IO.StreamWriter(f,True) End If sw.WriteLine(textBox1.Text) Finally If sw IsNot Nothing Then sw.close() End If End TryEnd Sub

2. VB.NET如何创建文件夹名称中含有“.\\”的文件夹

操作系统要实现文制件夹不能直接删除的格式是: 文件名..\操作系统里面,创建一个文件夹后文件夹并非空的,里面还有 . 和 .. 这两个名字的隐藏文件夹来作为是否文件夹的标识,所以CreateDirectory ("d:\\test\\test2.\\") 是创建了test文件夹和test.文件夹,所以你要创建不能直接删除的文件夹,可以改成CreateDirectory ("d:\\test\\test2..\\")

3. vb.net 创建文件夹和删除文件夹

Private Sub btnRemovePath_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnRemovePath.Click Try ' 先建立目录以便用于后续的删除示范。 If Not Directory.Exists("D:\网易") Then Directory.CreateDirectory(" D:\网易 \Test1") Directory.CreateDirectory(" D:\网易 \Test2") Directory.CreateDirectory(" D:\网易 \Test3") End If ' 删除子目录 Test1。 Directory.Delete(" D:\网易 \Test1", True) ' 删除子目录 Test2。 Dim myDirectoryInfo As New DirectoryInfo(" D:\网易 \Test2") myDirectoryInfo.Delete(True) ' 将目录 C:\AlexDirDemo 及其以下的文件和子目录全数删除。 Directory.Delete(" D:\网易 ", True) Catch ex As Exception MessageBox.Show(ex.Message) Exit Sub End Try ' 启动 Windows 资源管理器。 Process.Start("explorer.exe", "D:\") End Sub

4. asp.net创建文件夹

参考以下代码,希望对你有内用using System.IO;string path = Server.MapPath("Session['"+UserName+"']")if (!容File.Exists(path)) { Directory.CreateDirectory(path); }

5. vb.net中已知文件夹路径,求文件夹创建时间

Imports System.IODim dir As New IO.DirectoryInfo("F:\ggg") Me.Text = dir.CreationTime

6. 在VB.NET中,项目保存后,系统自动建立了多个文件夹和文件,当前目录是什么作用是什么

1、首先建立一个简单的示例工程,如下图所示。

7. 怎么利用vb.net创建文件夹

'vb.net2008Imports System.IOPublic Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim b_path As String b_path = "d:\123" If Directory.Exists(b_path) = True Then MsgBox("已有 " & b_path & " 目录") Else Directory.CreateDirectory(b_path) MsgBox("新创建 " & b_path & " 目录") End If End SubEnd Class

8. vb.net里面创建文件夹的这一段怎样转换成c#的语句

stringtemp=DateTime.Now.ToString("yy-MM-dd");if(!Directory.Exists(Application.StartupPath+""+temp))Directory.CreateDirectory(Application.StartupPath+""+temp);