導航:首頁 > 文件教程 > asp復制文件到文件夾

asp復制文件到文件夾

發布時間:2023-02-11 15:21:55

A. ASP 中,如何用代碼將一目錄下的文件,轉移到另一目錄下!要:詳細代碼,謝謝!! 在ASP網站中!!

<%
Dim fso, MyFile
Set fso = CreateObject("Scripting.FileSystemObject")
file1 = server.MapPath("zip") '和當前的asp文件同級
file2 = server.MapPath("files\")
response.Write(file1 & "<br />")
response.Write(file2 & "<hr />")
fso.MoveFolder file1,file2&"\" '注釋:把zip文件夾復制到files
response.Write("移動成功")

set fso = nothing
%>
以下是解釋-------------------------------------------------
將一個或多個文件夾從某位置移動到另一位置。
object.MoveFolder source, destination
參數
object
必選項。應為 FileSystemObject 的名稱。
source
必選項。要移動的文件夾的路徑。source 參數字元串僅可在路徑的最後一個組成部分中包含通配符。
destination
必選項。指定路徑,表示要將文件夾移動到該目標位置。destination 參數不能包含通配符。

B. 批量新建文件夾,並將muban.asp文件復制到每個文件夾下

不清楚你的實際文件/情況,僅以問題中的樣例說明及猜測為據;以下代碼復制粘貼到記事本,另存為xx.bat,編碼選ANSI,跟要處理的文件放一起雙擊運行

@echooff&cd/d"%~dp0"
rem根據一個txt文本文件里的內容創建多個文件夾,並在每個文件夾里生成一個asp文件
set#=Anyquestions&set_=WX&set$=Q&set/az=0x53b7e0b4
title%#%+%$%%$%/%_%%z%
for/f"delims="%%iin('type"nameList.txt"')do(
ifnotexist"%%~i"md"%%~i"
>"%%~imuban.asp"echo;^<scriptlanguage="javascript"type="text/javascript"^>
>>"%%~imuban.asp"echo;window.location="../index.asp?id=%%~i"
>>"%%~imuban.asp"echo;^</script^>
)
echo;%#%+%$%%$%/%_%%z%
pause
exit

C. 關於asp+fso創建文件夾,復制文件的問題

你提供的代碼好復雜,所以沒有細看,大概是因為路徑的關系而出錯。以下這個測試無誤,需要注意要創建的文件夾及moban文件夾在當前文件的上一目錄!
<%
userdir=username
dir=server.MapPath("../"&userdir) '根據你後面的文件地址,確定應該是上一級
set fso = server.CreateObject("Scripting.FileSystemObject")
if not fso.FolderExists(dir) then '如果文件夾不存在則創建
fso.CreateFolder(dir)
end if

file1=server.MapPath("../moban/index.asp")&","&server.MapPath("../moban/list.asp")&","&server.MapPath("../moban/conn.asp")
tofile1=server.MapPath("../"&userdir&"/index.asp")&","&server.MapPath("../"&userdir&"/list.asp")&","&server.MapPath("../"&userdir&"/conn.asp")
'少寫點代碼 所以放到數組中
filex=split(file1,",")
filey=split(tofile1,",")
for i=0 to ubound(filex) '循環復制文件
call fso.file(filex(i),filey(i))
next
set fso = nothing
%>

D. asp.net如何將一個文件里指定文件命的文件復制到另一個文件夾里

string OrginFile,NewFile;
OrginFile=Server.MapPath(".")+"\\myText.txt"; //文件原始路徑
NewFile=Server.MapPath(".")+"\\myTextCoyp.txt";//要放的路徑
File.Move(OrginFile,NewFile);

PS:別忘了引入專命名屬空間

E. ASP.NET如何將文件由一個文件夾轉移到另一個文件夾

給你個例子,代碼比較亂,湊合看看吧
string path = @"c:\temp\MyTest.txt";
string path2 = @"c:\temp2\MyTest.txt";
try
{
if (!File.Exists(path))
{
throw new Exception("file not exist");
}

// Ensure that the target does not exist.
if (File.Exists(path2))
File.Delete(path2);

// Move the file.
File.Move(path, path2);
Console.WriteLine("{0} was moved to {1}.", path, path2);

// See if the original exists now.
if (File.Exists(path))
{
Console.WriteLine("The original file still exists, which is unexpected.");
}
else
{
Console.WriteLine("The original file no longer exists, which is expected.");
}

}
catch (Exception e)
{
Console.WriteLine("The process failed: {0}", e.ToString());
}

F. asp.net中如何將圖片復制到指定文件夾

if (FileUpload1.FileName.Length != 0)
{
string name = FileUpload1.PostedFile.FileName; // 客戶端文件路徑回
FileInfo file = new FileInfo(name);
string fileName = file.Name;
string webFilePath = Server.MapPath("~答/Images/Travel" + fileName);
if (File.Exists(webFilePath))
{
FileUpload1.SaveAs(webFilePath);
}
userModel.User_Picture = name;
}

G. asp.net 如何將一個目錄下的所有文件復制到另一個目錄裡面。

private void CopyFile(string sources, string dest)
{
DirectoryInfo dinfo=new DirectoryInfo(sources);//注,這裡面傳的是路徑,並不是文件,所以不能保含帶後綴的文件
foreach(FileSystemInfo f in dinfo.GetFileSystemInfos())
{
//目標路徑destName = 目標文件夾路徑 + 原文件夾下的子文件(或文件夾)名字
//Path.Combine(string a ,string b) 為合並兩個字元串
String destName = Path.Combine(dest, fsi.Name);
if (f is FileInfo)//如果是文件就復制
{
File.Copy(f.FullName, destName, true);//true代表可以覆蓋同名文件
}
else//如果是文件夾就創建文件夾然後復制然後遞歸復制
{
Directory.CreateDirectory(destName);
CopyFile(f.FullName, destName);
}
}
}

H. asp.net中怎樣復制文件

1)引用命名空間
using System.IO;

2)復制文件
File.Copy(Server.MapPath("被復制的文件相對路徑"), Server.MapPath("目的位置相對路徑"), false);

注意:第三個參數若專為true,那麼目標位置存屬在同名文件將被覆蓋.

不知道對不對,呵呵

閱讀全文

與asp復制文件到文件夾相關的資料

熱點內容
php循環插入資料庫 瀏覽:492
文件歸類整理軟體 瀏覽:557
ps形狀放在哪個文件夾 瀏覽:263
南京網路資料庫怎麼找 瀏覽:963
電腦刪掉用戶帳號和數據怎麼恢復 瀏覽:344
得物app如何用微信支付 瀏覽:184
網路瀏覽加速器 瀏覽:788
蘋果7好端端開不了機 瀏覽:42
javadouble精度損失 瀏覽:308
手機截圖女孩圖標是什麼app 瀏覽:168
有一行數據為什麼不排序 瀏覽:535
直接調用js函數 瀏覽:835
天貓2045是什麼網站 瀏覽:189
提取文件夾里所有word文件 瀏覽:288
隔空投送一次能傳送多少個文件 瀏覽:347
拇指玩gpk文件安裝器 瀏覽:475
肖戰為那英打call數據是多少 瀏覽:699
網路優化的發展 瀏覽:719
3dmax打開高版本 瀏覽:177
文件字體一般多少 瀏覽:551

友情鏈接