asp.net 파일 유무 체크 / 파일 체크 / File.Exists

       

웹 경로를 사용하는 경우와, 로컬경로를 사용하는 경우 모두 사용가능합니다.

 

 






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public bool IsFileExist(bool web,string path)        
{            
    if (web)            
    {                
        if (File.Exists(System.Web.HttpContext.Current.Server.MapPath(path)))                    
            return true;                
        else                    
            return false;            
    }else{                
        if (File.Exists(path))                    
            return true;                
        else                    
            return false;            
    }        
cs

 

 

 

 

+ Recent posts