I have a requirement where user will create a file first then I will start logging data into that file, How can i prompt window so user can browse to local directory and save file with their choice of location ?
Any angular way of implementing this ?
main.html
<button type="button" class="btn btn-success" ng-click="recordLogs()">record</button>
ctrl.js
$scope.recordLogs = function(){
window.open("C:///");
}