Where I get download files that I click?

digitalmagician

Новичок
Регистрация
16.05.2012
Сообщения
23
Реакции
2
Баллы
3
Where is default download directory folder? After I download all files using chromium (beta), I can't find files in /Trash or directory I set "Download directory" I set on project directory folder.
96334
 

Вложения

  • 1661457160467.png
    1661457160467.png
    105,7 KB · Просмотры: 161
what type of file do you want to save? if it's an image you have to use "image processing" and use the same save path as your dowload directory.
 
Check the folder - AppData\Local\Temp
However, you should be able to control with action block Browser>Settings>Download directory
 
Work with CEF browser only, if I select chromium(Beta) it does't work. PDF files I wish to save it. How I use C# to download a file?
 
Work with CEF browser only, if I select chromium(Beta) it does't work. PDF files I wish to save it. How I use C# to download a file?
C#:
Развернуть Свернуть Копировать
WebClient webClient = new WebClient();
webClient.DownloadFile(project.Variables["link_to_file"].Value, downloadPath);
 
Thanks for reply. I get the error log, do I need to install C# first before able to use it or Zennoposter have standalone library for C# code?

Compiling code of Error in action "CS0246" "The type or namespace name 'WebClient' could not be found (are you missing a using directive or an assembly reference?)". [Row: 1; Column: 1]
 
Thanks for reply. I get the error log, do I need to install C# first before able to use it or Zennoposter have standalone library for C# code?

Compiling code of Error in action "CS0246" "The type or namespace name 'WebClient' could not be found (are you missing a using directive or an assembly reference?)". [Row: 1; Column: 1]
C#:
Развернуть Свернуть Копировать
System.Net.WebClient webClient = new System.Net.WebClient();
webClient.DownloadFile(project.Variables["link_to_file"].Value, downloadPath);
 

Кто просматривает тему: (Всего: 0, Пользователи: 0, Гости: 0)