views:

2636

answers:

4

What are the *.FileListAbsolute.txt files for that Visual Studio generates? They keep cluttering up my searches. Such as when I search for *.csproj for adding projects to a .sln.

Does Visual Studio use them? Is there any way to make it not generate them?

I STFW'd but it's filled with results of people listing directories that happen to have these files in them.

+1  A: 

The FileListAbsolute.txt files list the DLLs

Avram
+1  A: 

Im not sure why it's generated and am researching that now. VS writes to these files each time you compile. You can delete all of them and it will regenerate when you compile. (Use caution if you use svn and don't delete the svnbase files)

+5  A: 

The FileListAbsolute.txt file contains the list of files built in the current build and in prior builds, and is used during a Clean and Rebuild to figure out which files to delete.

The file is necessary because in certain situations, such as a project that has been renamed, you want the Build system to be able to delete the older name.

Dave Van den Eynde
A: 

I know this is an older post...but I had this same issue and it turned out that I had accidently checked these into source control and not checked them back out, leaving them read only. The solution was to remove them from source control.

Clay