I've just started using Code Contracts with .NET and I had a guard clause like this
if (!file.Exists(path)) throw FileNotFoundException();
and replaced it with
Contract.Requires(File.Exists(path));
I'm not sure this is correct, because the contract will be dealing with an I/O concern, but not sure if this is a problem or not.
Basically the question is: Is there any problem in using Contracts to ensure I/O concerns (or external/non-unit concerns)?