Pradip
Pradip

Reputation: 1327

Wordpress convert Forward slash into Backslash

I have source code of WordPress project of Linux operating system. So each file contain code with Forward slash ("/").

I am working on Windows. Here, Backslash("\ ") is necessary to access any file.

Is there any way to convert Forward slash into Backslash from throughout project or any plugin present.

Upvotes: 0

Views: 379

Answers (1)

Darwin
Darwin

Reputation: 121

Use the DIRECTORY_SEPARATOR constant for this.

Upvotes: 1

Related Questions