Re: [R] The program can't stop when searches over all files under folders and subfolders

2021-04-19 Thread Rui Barradas
Hello, The following will probably not solve the problem but I would 1. use pattern = "\\.wma$" in list.files; 2. use sub, not gsub, in sub("\\.wma$", ".mp3", i) Hope this helps, Rui Barradas Às 05:29 de 20/04/21, Jim Lemon escreveu: Hi John, If the program is still running, I can only gue

Re: [R] The program can't stop when searches over all files under folders and subfolders

2021-04-19 Thread Jim Lemon
Hi John, If the program is still running, I can only guess that the function is not exiting properly. If this happened to me, I would run "top" in a terminal window and see if that process number was actually doing anything or had gone zombie. Jim On Tue, Apr 20, 2021 at 11:28 AM John wrote: > >

[R] The program can't stop when searches over all files under folders and subfolders

2021-04-19 Thread John
Hi, I tried to convert all wma file to mp3 by av library and then I delete the wma file. Even after all files are converted to mp3, the program is still running. Is there anything wrong in this program? library(av) all_files <- list.files(path = ".", pattern = '*.wma', all.fi