What is the difference between File and FileInfo in C#?

后端 未结 10 1683
我在风中等你
我在风中等你 2020-12-02 11:22

I\'ve been reading that the static methods of the File Class are better used to perform small and few tasks on a file like checking to see if it exists and that

10条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-02 11:54

    Recently I faced problem with File.Exist, I hate this function. After than I've used Fileinfo class Exist function then my program works correct.

    Actually what happen in development enviornment File.Exist works well but when it goes to live environment this function is blocking the file object due to that reason I am getting the error access denied and not able to use the file.

    This is my learning. I will never used File.Exist method best is to create the object and then use it. Be aware to use static methods.

提交回复
热议问题