Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
28703 Discussions

File with information about the paths of the source files in a project

Luis2
Beginner
232 Views

Hi

I would like to make a backup of the source files of a visual fortran project. The files are located in different directories.

I could use the xml file *.vfproj, but in the tag file the attribute is RelativePath and I can not find its location on the hard disk.

There are a way record vfproj with a AbsolutePath attribute ?.

I have seen this information in the file *.sln. It is not an xml file and is more difficult to read.

Luis

0 Kudos
1 Reply
bmchenry
New Contributor II
232 Views

The location of the *.vfproj file is the 'main' path location and therefore all 'relative' paths are relative to that location.

Simply append the 'relative' path to the 'main' path and you have the desired absolute path.

(of course adding logic totake into consideration the meaning of prefix's to the relative path, for example like .., or ...., etc to mean strip a levelor two off the 'main' path)

b

0 Kudos
Reply