user3647900
user3647900

Reputation:

What is .DS_Store and why am I suspecting it has broken my web project?

I am working on a college assignment and am having a huge problem. Everything was fine until I noticed a strange '.DS_Store' file in the main folder containing all my images, html, css and .js files.

Now my webpages look like this:

Chrome view of index.html

An old screen grab - I had just finished adding a custom sprite and tweaking a flexslider before this all happened:

An old screen-grab from Chrome

I was trying to find some more information about this '.DS_Store' file. I can't find much online. Nor can I find any postings about similar problems. I did find this though but am hesitant to start deleting files from terminal.

However, I strongly suspect it has something to do with this '.DS_Store' file.

I have tried to solve this problem by:

I am still getting the same effect when I try to view the pages in Chrome, IE, Mozilla - broken images and no formatting. Not compiling.

Broken Images

Does anyone know anything about this? I would HUGELY appreciate some information on how I can fix this.

Upvotes: 1

Views: 4340

Answers (2)

user3857739
user3857739

Reputation:

.DS_store is just a hidden file with info about the system. If you haven't touched it, there is probably another problem. Maybe you moved a folder? Made a typo? Added or removed code?

Upvotes: 0

ZenOfPython
ZenOfPython

Reputation: 901

.DS_STORE would not have broken your web project at all.

From wikipedia:

DS_Store files are automatically created by Mac OSX Finder in browsed directories. These files contain information about system configuration.

System configuration files would not affect your web project at all.

Upvotes: 2

Related Questions