Questions tagged [file-location]
94 questions
0
votes
0 answers
Eclipse can't find the DTD for my XML file in the same location, only on Desktop
I have to create a DTD referenced by an XML file for class using Eclipse (i'm on Version 2022-09). I put the DTD in the same file location as the XML. The workspace navigator can find it without problems. But when referencing it in the XML, Eclipse…

Nyx
- 1
- 2
0
votes
0 answers
Xcode take relative path when I add new file
I have issue with xcode and cause issue with my team when I comments my code. when I add new swift file it always take relative path from root to file location in project not the absolute path. do any one know how to fix it?

NinjaDeveloper
- 1,620
- 3
- 19
- 51
0
votes
1 answer
Dockerized Solr cannot find requestHandlers
I am currently working on a project with a PostgreSQL, Redis, Medusa and Solr implementation.
I want to run all my applications containerized so that I can easily deploy it to my Linux Server.
My issue is that when I try to run a containerized Solr…

Frederik Bo Dahl
- 25
- 4
0
votes
0 answers
Relative path in dynamically generated (with hash) folder
With Express, I am trying to acess relative path (css/..., assets/...) inside HTML file.
I can't use express.static() because the HTML file is located in a dynamically generated folder, with a hash as its name.
There are many folders with a…

Pedro Fernandes
- 33
- 1
- 7
0
votes
1 answer
How do I save image file into java project file location from JFileChooser?
I am retrieving an image file with the following lines of code...
How do I make sure it ends up in the project file location?
public void run() {
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileFilter(new…

Kai Kishpaugh
- 3
- 2
0
votes
1 answer
Powershell array failing because of "Copy-Item : Illegal characters in path."
I have a specific usecase where I need to identify if files from a list exist, and if so, copy them to a separate location with the relevant file structure kept. I need to keep my list of targets in the same script.
I believe my issue is something…

CmD
- 1
0
votes
1 answer
Instaloader Scrape Results Lost On Computer?
>>> import instaloader
>>>
>>> insta=instaloader.Instaloader()
>>>
>>> insta.login('myusername', 'mypassword')
>>>
>>> acc="targetprofile"
>>>
>>> insta.download_profile(acc,profile_pic_only=False)
I have…

Phelan
- 1
- 2
0
votes
1 answer
At which location (path) does visual studio 2019 creates *.csproj.user file?
What is the location of Visual studio 2019 created *.csproj.user file? I searched it in user appdata folder, but I couldn't find any. Please help.

Pradeep
- 13
- 1
- 8
0
votes
0 answers
How to find where a jar is storing information
I do not have access to the source code but I have a jar file that takes some input for settings when it is run. It remembers the settings for subsequent runs so I assumed that it was storing information internally. However, if I delete the jar and…

thekid77777
- 391
- 1
- 10
0
votes
2 answers
Displaying files from out of httpdocs location
The files are going to be stored in a folder next to httpdocs. Thus, it will make hard to display those files to internet user. How I'll overcome this problem? I mean, I want to display/serve those files to the users. Probably I need to use some…

ilhan
- 8,700
- 35
- 117
- 201
0
votes
1 answer
Where does Microsoft Visual Studio 2019 store "Do not ask again" answer?
I am looking for the config file(s) or registry key(s) that Microsoft Visual Studio 2019 Community Edition stores the "Do not ask again" values.
I've pressed the space bar at the "wrong" time when tabbing through the find/replace results dialog,…

Geoffrey Hoffmann
- 143
- 8
0
votes
2 answers
Can't find the file I created by fs.writeFile
I am trying to write a file in node.js using fs.writeFile, I use the following code:
const fs = require('filer');
const jsonString = JSON.stringify(myObj)
fs.writeFile('/myFile.txt', jsonString, function (err) {
if (err) throw…

Shiva Alz
- 1
- 1
0
votes
1 answer
How to run python scripts from path while including extra files like .txt
I am currently working on a script that allows you to type in a path of a python script and run it, this is useful for running the same type of code a lot for troubleshooting because sometimes the program crashes CMD and you have to re-enter all the…

Hansa Jamak
- 55
- 8
0
votes
1 answer
How can I open file location to show a file?
I am making video player app. And I want to add option like, when user taps,it opens default file manager to show this video file's location.
Here is sample from Windows OS
Any help would be appreciated !

Vuqar Samed
- 73
- 13
0
votes
0 answers
How can I get my python code (Spyder) to locate and extract data files?
I am doing a machine learning project in materials science, this code asks me to choose files to upload, but when I name the files it comes up with an error message. The beginning of the code (and relevant bits) are included below:
import…

Chi
- 11
- 4