㈠ 如何利用網頁代碼刪除文件

刪別人的東西總是不好。。。
用RM廣告去除器可以清除啊,不用你說的」切割斷條「
超級兔子專RM廣告清除器屬 V1.2綠色特別版
http://xdowns.com/soft/10/139/2006/Soft_31178.html
Rm文件彈出頁面清除工具 3.0
http://xdowns.com/soft/10/139/2006/Soft_30158.html

㈡ 用c語言怎麼刪除一些文件

用 system 調 DOS 命令 ERASE 或 DEL
加選項 /F 強迫刪除
加選項 /Q 不要問是否確定要刪除
路徑單斜杠用雙斜杠。

例如:

system("DEL /F /Q *.jpg"); -- 刪除當前文件夾里所有的jpg圖像文件

system("ERASE C:\\TEMP\\abc.txt");
刪除文件 C:\TEMP\abc.txt

也可以:
char cmd[]="ERASE C:\\TEMP\\abc.txt";
system(cmd);

㈢ 強行刪除文件的代碼

強制刪除用
unlocker強制文件刪除
,它可以分析、解鎖正在正在訪問刪除項的程序或進程。
網上搜一下,unlocker,很多
也可以留個郵箱,我給你發
安裝後,在右鍵會有一個unlocker選項,選中需要刪除的文件,進行強制刪除就行了
不行的話,再試試冰刃強制刪除軟體

java刪除項目中的文件代碼

FIle file = new File("/image/123.jpg");
if (file.exists()){
file.delete();
}

使用File對象操作刪除,會判斷是否存在,如存在就刪了。

如果想找路徑回,使用File類的getAbsolutePath()方/法就能答得到/絕/對/路/徑/的字元串表示。
例如上面的對、象file,使用
String str = file.getAbsolutePath();
System.out.println(str);
你在/控/制/台co/ns/ole/窗口就能看到了。

㈤ 快速刪除文件夾的代碼

無敵刪除命令
復制下面一段

DEL
/F
/A
/Q
\\?\%1

RD
/S
/Q
\\?\%1

另存為.bat
將要刪除的文件拖到該批處理文件上
就可以刪除了

㈥ 用vbs刪除文件的代碼是什麼

set fso=createobject("scripting.filesystemobject")
fso.deletefile "文件" '要帶後綴名的,不同目錄要帶路徑
fso.deletefolder "文件夾" '不同目錄要帶路徑

㈦ c語言 刪除指定文件

C語言刪除指定文件或目錄,參考代碼如下:

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<io.h>
#include<direct.h>
#include<errno.h>

//判斷是否是".."目錄和"."目錄
inlineboolis_special_dir(constchar*path)
{
returnstrcmp(path,"..")==0||(path,".")==0;
}

//判斷文件屬性是目錄還是文件
inlineboolis_dir(intattrib)
{
returnattrib==16||attrib==18||attrib==20;
}

//顯示刪除失敗原因
inlinevoidshow_error(constchar*file_name=NULL)
{
errno_terr;
_get_errno(&err);
switch(err)
{
caseENOTEMPTY:
printf("Givenpathisnotadirectory,thedirectoryisnotempty,. ");
break;
caseENOENT:
printf("Pathisinvalid. ");
break;
caseEACCES:
printf("%,can'tdelete. ",file_name);
break;
}
}

inlinevoidget_file_path(constchar*path,constchar*file_name,char*file_path)
{
strcpy_s(file_path,sizeof(char)*_MAX_PATH,path);
file_path[strlen(file_path)-1]='';
strcat_s(file_path,sizeof(char)*_MAX_PATH,file_name);
strcat_s(file_path,sizeof(char)*_MAX_PATH,"\*");
}

//遞歸搜索目錄中文件並刪除
inlinevoiddelete_file(char*path)
{
_finddata_tdir_info;
_finddata_tfile_info;
intptr_tf_handle;
chartmp_path[_MAX_PATH];
if((f_handle=_findfirst(path,&dir_info))!=-1)
{
while(_findnext(f_handle,&file_info)==0)
{
if(is_special_dir(file_info.name))
continue;
if(is_dir(file_info.attrib))//如果是目錄,生成完整的路徑
{
get_file_path(path,file_info.name,tmp_path);
delete_file(tmp_path);//開始遞歸刪除目錄中的內容
tmp_path[strlen(tmp_path)-2]='';
if(file_info.attrib==20)
printf("Thisissystemfile,can'tdelete! ");
else
{
//刪除空目錄,必須在遞歸返回前調用_findclose,否則無法刪除目錄
if(_rmdir(tmp_path)==-1)
{
show_error();//目錄非空則會顯示出錯原因
}
}
}
else
{
strcpy_s(tmp_path,path);
tmp_path[strlen(tmp_path)-1]='';
strcat_s(tmp_path,file_info.name);//生成完整的文件路徑

if(remove(tmp_path)==-1)
{
show_error(file_info.name);
}

}
}
_findclose(f_handle);//關閉打開的文件句柄,並釋放關聯資源,否則無法刪除空目錄
}
else
{
show_error();//若路徑不存在,顯示錯誤信息
}
}

intmain(intargc,char**argv)
{
delete_file("C:\DocumentsandSettings\Administrator\LocalSettings\TemporaryInternetFiles\*");
system("pause");
return0;
}

㈧ 如何用C++代碼實現刪除某目錄下的文件

1、可以調用標准c++庫里的 system()

#include<cstdlib>
system("你的命令");

或者

#include「stdio.h」
voidmain(){
system("calc");
}

2、可以調用系統的API函數,比如windows平台上可以調用ShellExecuteEx()、CreateProcess()等等

㈨ 如何用代碼 刪除一個文件

網頁留言本是網站伺服器端的問題。
如果你要在網頁上加個按鈕 刪除xxxx/123.txt,你要寫伺服器端的介面程序,即CGI.

網頁加一段<FORM ....調用程序..> ...</FORM>
裡面加一個刪除選擇(打勾),加一個密碼輸入(text area).
伺服器端的介面程序,取FORM里的 刪除選擇,密碼,判斷兩者都對後, 調用
rm root/path/123.txt -- unix,linux 伺服器
erase root/path/123.txt -- PC
刪除.

root -- 伺服器根路徑。
path -- 伺服器根到文件的路徑。
調用命令,看你用什麼寫,perl,c,csh,php,....

㈩ 如何用代碼 刪除一個文件(網頁)!

public void deleteFile(String destFile) {
try {
File fileName = new File(destFile);
if (!fileName.exists()) {
// create a new file
System.out.println("file now exists.please check.");

}else{
fileName.delete();
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}