There is also a FileInfo class, which does the same things as the static methods.
On the other hand, you probably don't want to mock the entirety of the FileInfo class. Instead, you want to place all of your file operations into a single class, then extract an interface from the class (describing the public methods), and use the interface to mock the file operations that you perform, not the entire set of operations that Microsoft thinks should be in the FileInfo class.