Skip to main content
0 votes
1 answer
58 views

I'm trying to check if a file exists on a remote server, in a Forms 12c program unit. I tried to use utl_file.file_exists('\\server\d$\folder\filename.txt') and also utl_file.fgetattr('DBFOLDER','...
mr anto's user avatar
  • 23
3 votes
0 answers
263 views

I'm building a chatbot using OpenAI's Assistant (beta) and want to combine: File Search – so the assistant can retrieve information from my uploaded PDF/manual (stored in a vector store). Function ...
Alejandro De Castro's user avatar
1 vote
2 answers
77 views

First time poster. Not a programmer, but I dabble where it intersects with my work as a composer and sound designer. I apologize if this is unnecessarily detailed, but it's the best way I can explain ...
Mr.Pebbles1961's user avatar
0 votes
1 answer
937 views

With rg I want to list all files which contain PATTERN_A and PATTERN_B, possibly on different lines, but both patterns should be in the file. I tried rg -l -e PATTERN_A -e PATTERN_B /path/to/dir but ...
halloleo's user avatar
  • 10.8k
0 votes
1 answer
159 views

I'm writing a program that searches a file in Windows directory by it's name, starting from C:\. I use recursive_directory_iterator and path from std::filesystem. The problem is, while user input is ...
chrkspln's user avatar
1 vote
1 answer
177 views

Building on the code from this answer, I tried this to find all .url files which include http://kfhntwvap347, but I also tried http://kfhntwvap347:8080/consense/ in $urlParts knowing that there is ...
Matthias Puchta's user avatar
1 vote
1 answer
330 views

I have a directory D:\DMS with lots of subfolders. Within these subfolders there are plenty of ".url" files which include URLs like http://mmtst399:8080/dms/objekt?page=index&mode=...
Matthias Puchta's user avatar
1 vote
2 answers
138 views

I'm trying to list the paths of all pictures with a width of 650, the intended result would be: C:\test\650-width-picture1.png C:\test\650-width-picture2.jpg C:\test\subfolder\650-width-picture3.jpg ...
puddingrocks's user avatar
0 votes
1 answer
82 views

I wish to search for files or folders provided to $itemsToInclude under directory C:\bea Once found it should add the found item [file or folder] to $zipFileName while persisting the folder structure. ...
Ashar's user avatar
  • 3,195
0 votes
2 answers
267 views

I have a list of file names in python like this: HelloWorld.csv hello_windsor.pdf some_file_i_need.jpg san_fransisco.png Another.file.txt A file name.rar I am looking for an IntelliJ style search ...
Adam Griffiths's user avatar
0 votes
1 answer
1k views

I need to iterate through folders in a directory, one by one, and perform a function on the files within those folders as a group. Those files need to be passed together, with their respective folder ...
Clouseau's user avatar
1 vote
1 answer
92 views

Below windows powershell command helps list all files [excluding a few filenames] that contain string1 Get-ChildItem -Path "D:\Jenkins" -File -Recurse | Where-Object { $_.Name -notlike "...
Ashar's user avatar
  • 3,195
1 vote
0 answers
28 views

I have been attempting a q that aims to search for files in a directory that match specific search strings, retrieve information about those files (modification date and file size), store the ...
Rishav Dhariwal's user avatar
0 votes
1 answer
97 views

I am following the Airbnb naming convention https://airbnb.io/javascript/react/#naming Thus, I am using the index.tsx file to define my custom React Component but, I have an issue when searching for ...
Hazem Alabiad's user avatar
1 vote
1 answer
1k views

I'm running into issues with VS Code's file search. I've tried restarting the app, reopening the workspace, etc, but the problem persists. Simply put, the file search can't find exact matches for ...
rolias4031's user avatar

15 30 50 per page
1
2 3 4 5
14