SetPreference in Edge for change directory download - vba

I need to change the directory where I'll save a file coming from the download after clicking a link. I was able to find and click on the link, but I need to set the location and name of the file.
I'm using VBA

Related

Problem in saving folder path using QFileDailog - PYQT

I created a button(QPushButton) which helps me to browse and select folder location and save that path into the box(QlinEdit) using PYQT5.
Here is the UI
Problem
I'm able to browse the path and save it to a variable. But when I
close the program (.py) and run it again then the location path will
get change(empty). So, I have to browse and save it again and again
whenever I run the program.
Is there any solution or way to just save it once and it will remains the same always ???

firefox get save page list and download file list from "places.sqlite"

i want to make software from vb.net for auto save fire_fox portable browser downloaded file list, and other details.
so how i can find save page list and download file list from
"Firefox Portable path \Data\profile\places._sq_l_i_t_e" file
in which table contain this data?

How to stop files inside moved directories (and newly created files) from automatically opening in editor (PyCharm 2020.1)

I am using PyCharm 2020.1. When I create a new file, PyCharm automatically opens it in the editor. Also when I move a directory, PyCharm opens all the files inside the directory in the editor.
Sometimes it's tens of files opened at once. This behavior is frustrating and I would like to turn it off, but have not been able to find where in Preferences to do so.
Someone please help me figure out how to stop newly created files and files inside moved folders from automatically opening in editor. Thanks.
I don't think you can't open a new file via PyCharm, unless you create it via the Terminal tab on the bottom, for example:
touch test.py
When you move a directory into a new directory, there should be a checkmark on a popup saying "Open moved files in editor", so you probably have that checked.

where is common.min.js located?

We are working on a project which involves custom branding. We are using a tool called Splunk. We need to add a label along with Splunk logo. We investigated with firebug and we could see that there is a references to that splunk logo in common.js and common.min.js file. We are using splunk version6.2. We located the common.js file in the below path.
(Path :home dir\Splunk\share\splunk\search_mrsparkle\exposed\js\build\bundles\common.js ). When we changed the logo in common.js file, we were able to see the changes, refelected.
So we tried to searched for the common.min.js file, we were not able to locate that file.
Can some one throw some light on where this common.min.js file will be located. If we are able to locate it, we will be able to make our branding changes.
From the Firebug, we are able to see that that common.min.js file is located in the http://domainname/static/#245427/js path. We are not able to locate that file in our server.
Any help on this is appreciated.

automatically place downloaded files in folder bsed on downloads extension suffix

I’m making a simple web browser for work eeh, what I’d like to know is if its possible to save a file of a particular extension to a particular file.
I currently use google chrome when downloading a file it places this (regardless of extension) in a downloads folder without asking where I ant to download this too.
I want to achieve the same except that downloads with the extension .dwg are placed automatically in a folder named DWG DOWNLOADS…
How to achieve this in vb.net?
In any browser you have a config section.
In Firefox you have browser.download.useDownloadDir;true and browser.download.folderList;1
you can add your own config to allow different saved folder paths and dynamically modify them depending on the extension of the file you uploaded.
See a complete list of the web browser config with about:config in address bar.
Not real sure what you are asking, but if you are actually making a web browser just check the extension of the file you are requesting to download. If the extension is ".dwg" then save the file to the folder you want.
If you are wanting to automatically move Google Chrome downloads to a different directory, you can use a FileSystemWatcher to monitor for new files in Chrome's download directory and move them to another folder based on each file's extension.