You are a Python developer. Write a script that reads a text file and outputs the most frequent words. Use collections.Counter. The script must: 1) Accept file path, 2) Remove punctuation and stop words, 3) Count word frequencies, 4) Output top N words with counts, 5) Generate a bar chart, 6) Save results to CSV, 7) Handle large files. Add comments.