neoDev
neoDev

Reputation: 3039

wamp - what is the "C:/wamp/tmp/session_dir" file? Can I delete it?

In the "C:/wamp/tmp/" folder (where session files are stored),
I have one file named session_dir, that contents only this text:

session directory

What is it? Can I delete it?

Upvotes: 1

Views: 2656

Answers (1)

EmmanuelC
EmmanuelC

Reputation: 136

The default Wamp installation has this line in php.ini :

session.save_path = "c:/wamp/tmp"

You can remove the file you mentionned. In your future devs, if you use sessions, you should find some session files in this dir.

Upvotes: 2

Related Questions