C# 判断路径和文件存在

1、判断路径是否存在,不存在则创建路径:

1 if (!System.IO.Directory.Exists(@"D:\Export"))
2 {
3 System.IO.Directory.CreateDirectory(@"D:\Export");//不存在就创建目录
4 } 

2、判断文件是否存在:

1 if(File.Exists(@"文件路径"))
2 {
3 //存在
4 }
5 else
6 {
7 //不存在
8 } 

需using  system.IO

时间: 2024-10-29 19:08:57

C# 判断路径和文件存在的相关文章

java判断路径是文件夹还是文件

当给定一个路径没有后缀的时候,很难分辨代码是文件还是文件夹,如下图: 我在桌面建立了一个名为one的文件,路径为:/Users/XXXXXX/Desktop/one java代码如下: import java.io.File; public class Flie_or_Folder { public static void main(String s[]){ String path ="/Users/XXXXX/Desktop/one"; File file = new File(pa

C++ stat判断路径是文件还是目录

1 #include <iostream> 2 #include <sys/stat.h> 3 4 using namespace std; 5 6 void foo ( const char* path ) { 7 struct stat s; 8 if ( stat ( path, &s ) == 0 ) { 9 if ( s.st_mode & S_IFDIR ) { 10 cout << "DIR" << endl

将字符串添加到指定的文件中去 AppendAllText ;判断指定路径的文件是否存在File.Exists(Path)

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Test { class Program { static void Main(string[] args) { string path = @"F:\1.txt"; //指定文件的路径 //---------------------------------------------- //.Exi

C/C++中判断某一文件或目录是否存在

1 //1.C++很简单的一种办法: 2 #include <iostream> 3 #include <fstream> 4 using namespace std; 5 #define FILENAME "stat.dat" 6 int main() 7 { 8 fstream _file; 9 _file.open(FILENAME,ios::in); 10 if(!_file) 11 { 12 cout<<FILENAME<<&q

C# 判断路径是否存在

? 1 2 3 4 5 6 7 定义文件状态枚举:0-路径为空,1-存在文件,2-路径不为空,但文件不存在  public enum FileExsitStatus  {        NoPath=0,        FileExsit=1,        NoFile=2  } 利用File文件操作类判断文件是否存在: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 /// <summary> /// 判断指定路径的文件是否存

day 20+在控制台录入文件的路径,将文件拷贝到当前项目下

* 1,定义方法对键盘录入的路径进行判断,如果是文件就返回 2,在主方法中接收该文件 3,读和写该文件 * */public class Test3 { public static void main(String[] args) throws Exception { File f = getFile(); BufferedInputStream inb = new BufferedInputStream(new FileInputStream(f)); BufferedOutputStream

php中禁止非法调用和硬路径引入文件的方法

php中禁止非法调用和硬路径引入文件的方法 在php中有一些公共的文件为了方便,我们会做一个公共文件,让不用的文件共同调用.为了禁止公共文件被非常单独调用,可以在文件上做一个常量,禁止非常调用:在公共文件上定义一个常量如下 define('custom_string',true); 在要调用的文件里也加上一个判断来调用公共文件: if (!defined('custom_string')) { exit('非法调用'); } 一般地,要调用文件可以用include,include_once,re

如何判断指定的文件是否存在

问:如何在shell里面判断指定的文件是否存在,如果存在则做一些你想做的事情,如果不存在则做另外一些你想做的事情. 假设你想判断tom是否在 /sys/class/input/event0/device/name /sys/class/input/event1/device/name /sys/class/input/event2/device/name /sys/class/input/event3/device/name /sys/class/input/event4/device/name

PHP中文件类型 文件属性 路径以及 文件相关的函数

一: 文件类型判断: 1.is_dir()  判断是不是目录 2.is_file() 判断是不是文件 3.is_executeable() 判断是不是可执行文件 4.is_readable()  判断是不是可读文件 5.is_writable() 判断是不是可写文件 6.is_link()  判断是不是快捷方式 二:文件属性: 1.file_exits()  文件是否存在 2.filesize() 文件大小 3.filectime()  文件创建时间 4.filemtime() 文件修改的时间