Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Codeblocks ".layout" ".depend" files

I have a Codeblocks project and I saw that there are .layout and .depend files that appeared in my project folder. Once I close Codeblocks can I safely delete these files?

like image 605
Martin B. Avatar asked Nov 12 '15 21:11

Martin B.


People also ask

Where are CodeBlocks save files?

You may want to look in the directory that you have CB installed in first, you may also find this in program file (x86) or the codeblocks sub directory. Look for a file named that may have proj or project in it's name. If you don't find it you can just create a new folder.

What is layout file CodeBlocks?

'. layout': this is a list of all the open files in the corresponding project, with tab and line position. '. depend':the dependencies of each file in a project. Just delete them directly.

What are depend files?

The depend file is an ASCII file used to specify information concerning software dependencies for a particular package. The file is created by a software developer.


Video Answer


1 Answers

'.layout': this is a list of all the open files in the corresponding project, with tab and line position.

'.depend':the dependencies of each file in a project.

Just delete them directly. They are generated while compiling .

like image 147
XiaXuehai Avatar answered Oct 05 '22 18:10

XiaXuehai