클립보드에 있는 파일명을 검색해서 해당 폴더를 찾는 방법이 있을까요? Is there a way to find the folder by searching for the filename on the clipboard

클립보드에 있는 파일명을 검색해서 해당 폴더를 찾는 방법이 있을까요?

Is there a way to find the folder by searching for the filename on the clipboard

클립보드에 복사된 파일명이 "고라니"라고 가정할때 바탕화면에 있는 “고라니” 폴더를 찾아서 열고 싶은데 구현할 수 있는 방법이 있을까요?

Assuming that the filename copied to the clipboard is “Elk”, I want to find and open the “Elk” folder on my desktop, is there any way to implement it?

There is an activity called “Get from Clipboard”, which can pretty easily save a filepath on the clipboard into a string variable.

I’m not sure of what you’re trying to do after that.

If you’re just trying to open the folder in windows explorer (what happens when you double click a folder on your desktop), you should be able to do that using an “Invoke Power Shell” activity. It would go something like

explorer C:/RPA

Note that C:/RPA is just a folder I keep on my work computer, and this would only work if the path on your clipboard is an absolute path.

1 Like

Oh, thank you. I got a good idea from your answer. I’ll try to see if it can be implemented.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.