Facebook Sharer
选择您要替换的背景颜色:
【农历新年】背景图片:
个性化设定
 注册  找回密码
查看: 693|回复: 1
打印 上一主题 下一主题

求asp.net c# 删除文件代码

[复制链接]

43

主题

1

好友

698

积分

青铜长老

Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7

跳转到指定楼层
1#
发表于 2013-1-16 01:08 PM |只看该作者 |倒序浏览
Directory.Delete 可以删除文件吗?为什么我只能删除 folder , file却不行  ?

file 不行!
  string target = @"d:\TestDir\1.jpg";
        try
        {
            if (Directory.Exists(target))
            {
                Directory.Delete(target, true);
            }
        }
        catch (Exception ex)
        {
            string a = "";
            a = ex.Message;
        }
folder 可以!
  string target = @"d:\TestDir";
        try
        {
            if (Directory.Exists(target))
            {
                Directory.Delete(target, true);
            }
        }
        catch (Exception ex)
        {
            string a = "";
            a = ex.Message;
        }






收藏收藏0

43

主题

1

好友

698

积分

青铜长老

Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7

2#
发表于 2013-1-16 01:49 PM |只看该作者
问题解决
delete file 要用
string target = @"d:\TestDir\1.jpg";
        try
        {
            if (File.Exists(target))
            {
                File.Delete(target);
            }
        }

        catch (Exception ex)
        {
            string a = "";
            a = ex.Message;
        }


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

JBTALKS.CC |联系我们 |隐私政策 |Share

GMT+8, 2025-1-21 06:28 AM , Processed in 0.112329 second(s), 21 queries .

Powered by Discuz! X2.5

© 2001-2012 Comsenz Inc.

Ultra High-performance Dedicated Server powered by iCore Technology Sdn. Bhd.
Domain Registration | Web Hosting | Email Hosting | Forum Hosting | ECShop Hosting | Dedicated Server | Colocation Services
本论坛言论纯属发表者个人意见,与本论坛立场无关
Copyright © 2003-2012 JBTALKS.CC All Rights Reserved
合作联盟网站:
JBTALKS 马来西亚中文论坛 | JBTALKS我的空间 | ICORE TECHNOLOGY SDN. BHD.
回顶部