path tag

28 questions


1 answers
106 views
0
To permanently add a directory to PYTHONPATH

You can also add directories with sys.path.append, but I understand that this will be restored to its original state when the program ends.I just want to make a code that I don't want to add again if ...


1 answers
88 views
0
How to get the current URL from JavaScript

I use jQuery. How can I get the current URL path?For examplehttp://localhost/menuname.de?foo=bar&number=0I mean, this url.

1 years ago

1 answers
88 views
0
[Android] Image related - absolute path obtained, but it doesn't get written to imgView...

Hello, I'm a beginner studying Android.When you click a specific button, the gallery screen is displayed through ACTION_PICKI tried to display the selected image in the desired image view by selecting...


1 answers
122 views
0
How do I determine the absolute path to a file?

Given a relative path, such as mydir/myfile.txtC:/example/cwd/mydir/myfile.txt Like thisHow do I find the absolute path?


1 answers
96 views
0
How to recursively find files using Glob()?

I want to use Glob() to recursively find the file.The code I use is Glob(os.path.join('src','*.c'))This code is currently in the src directory only.Locate the c file.Also in the subdirectory of src Ho...

1 years ago

1 answers
94 views
0
I wonder why you use this before Android this.findViewById

While I was reading the Android book, I had a question~Usually, you find the ID of the view in the following way.Button startButton = (Button) findViewById(R.id.startButton);In the book, we put this i...

1 years ago

1 answers
95 views
0
Chrome dirver crawling_1_modified (add url)

url ='https://play.google.com/store/apps/details?id=tools.photo.hd.camera&hl=en'title = driver.find_element_by_xpath('//title')print(title.get_attribute('content'))None is the result of this code....


1 answers
75 views
0
Is there a method to combine paths?

Is there a method like System.IO.Path.Combine() in Java if you look at C# or dot net? Or is it possible with the code?

1 years ago

1 answers
70 views
0
To remove an extension from a file path?

os.path.You can remove the extension by using the basenameI imported the os modulepath.Unable to access basename.os.path.Is there any other way besides basename ?

1 years ago

1 answers
135 views
0
How can I read XML data using XPath in Java?

I want to read XML data using XPath. So I want to get information without parsing XML documents. What I want to do is:I would like to use XPath to obtain XML documents online through URL and parse the...

1 years ago
« - 2 - »

© 2024 OneMinuteCode. All rights reserved.