What is default directory of File.Open?
asp.net-4.0, c#, file
Solution
From the `File.Open` MSDN documentation:
The path parameter is permitted to specify relative or absolute path information. Relative path information is interpreted as relative to the current working directory. To obtain the current working directory, see GetCurrentDirectory.
Problem
I have this code: ``` Stream f = File.Open("data.majid", FileMode.OpenOrCreate, FileAccess.ReadWrite); ``` Where will be file created?