Com Piler
Com Piler

Reputation: 267

Change name of the folder with mozilla thunderbird extension

I'm not experienced in creating ff/thunderbird extensions, but I have to modify one open source addon, and the easiest way to reach what I want is to change name of one folder. My question is: how to do it, having path and name of the folder?

Thanks in advance

Upvotes: 1

Views: 441

Answers (1)

MSKV
MSKV

Reputation: 38

If the folder is created by the TB-extension:
Open the .js-file and search for the folders name (ctrl+f). In this example it's "FolderName".

If there is something like var folder = FileUtils.getDir("ProfD", ["FolderName"], true); you can replace FolderName with the new name.

If you want to know how to create a folder, check this page.

Upvotes: 1

Related Questions