📄 path.aspx
字号:
<%@ Import Namespace="System.IO" %>
<%
Dim strPath As String
' Get a Temporary File
strPath = Path.GetTempFileName
Response.Write( "<li>Created TempFile " & strPath )
' Retrieve File Name
Response.Write( "<li>The name of the file is " )
Response.WRite( Path.GetFileName( strPath ) )
' Retrieve Directory Name
Response.Write( "<li>The name of the directory is " )
Response.Write( Path.GetDirectoryName( strPath ) )
' Retrieve File Extension
Response.Write( "<li>The file has the extension " )
Response.Write( Path.GetExtension( strPath ) )
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -