Where are these entries stored?

Hi, I’m trying to find the folder where these entries are stored:

 const entry = await fs.createEntryWithUrl(filePath);

When I run the code again, even though I reset the plugin, it says the entry already exists that I need to overwrite it, so I do this:

 const entry = await fs.createEntryWithUrl(filePath, { overwrite: true });

I solved my issue indeed, but I want to see if there is some data stored that might be trash just taking space from the computer.

So, these entries are stored somehow in a file or only in the UXP plugin temporary, I really don’t get it well.

Hope this is clear enough.

Thanks!

Doesn’t filePath define where entry is stored?

1 Like

Yes, but even though if there’s no file inside the folder, it tells that the entry already exists but there’s no file there, so maybe the entry is somehow being saved in memory? That’s my question.

1 Like

Just a guess: For my understanding, your instance of the filesystem api in your variable fs will know about the entries that it created.